home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / ctrmv.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  374 b   |  15 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_ctrmv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
  7.          const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
  8.          const int N, const void *A, const int lda, void *X,
  9.          const int incX)
  10. {
  11. #define BASE float
  12. #include "source_trmv_c.h"
  13. #undef BASE
  14. }
  15.